3v4l.org

run code in 300+ PHP versions simultaneously
<?php $t=time(); //csv file write #$filename=date("Y-m-d",$t)."_work.csv"; $filename=$t."_data.csv"; $handle = fopen($filename, "w"); //Header for csv file $business = array("Business Name" , "Address1" ,"City","State","Zip code","Address2","Phone" , "Website" ,"Yelp Url"); fputcsv($handle,$business); $start=0; $csv_records = array(); for ($i = 0; $i <= 100; $i++) { $start=$i*10;//start count for pagination $args = $_SERVER['argv']; $html = file_get_contents($args[1].'&start='.$start); //$html = file_get_contents('http://www.yelp.com/search?find_desc=tasty+burger&find_loc=San+Francisco%2C+CA&start=10', 'w'); if(!empty($html)){ $pokemon_doc = new DOMDocument(); libxml_use_internal_errors(TRUE); //disable libxml errors $pokemon_doc->loadHTML($html); libxml_clear_errors(); //remove errors for yucky html $pokemon_xpath = new DOMXPath($pokemon_doc); //get all the span's with an class for getting Url $pokemon_row = $pokemon_xpath->query('/html/body//span[@class="indexed-biz-name"]/a'); $biz = array(); if($pokemon_row->length > 0){ foreach($pokemon_row as $row){ $biz['name'] = $row->nodeValue; $url1 = $row->getAttribute("href"); $biz['yelp_url'] = "http://www.yelp.com".$url1; $html1 = file_get_contents("http://www.yelp.com/".$url1); $pokemon_doc1 = new DOMDocument(); libxml_use_internal_errors(TRUE); $pokemon_doc1->loadHTML($html1); libxml_clear_errors(); //remove errors for yucky html $pokemon_xpath1 = new DOMXPath($pokemon_doc1); //get all the h2's with an id $pokemon_row1 = $pokemon_xpath1->query('/html/body//div[@class="mapbox-text"]/ul/li'); $biz['address'] = $pokemon_row1->item(0)->nodeValue; $biz['phone'] = $pokemon_row1->item(2)->nodeValue; if(preg_match('/Business website/',$pokemon_row1->item(3)->nodeValue)){ $biz['website']= $pokemon_row1->item(3)->nodeValue; } else{ $biz['website']= $pokemon_row1->item(4)->nodeValue; } //$biz['website'] ="http://".ltrim($bizwebsite,1); /* ############# Code to remove extra spaces and new line chars*/ $line_out_name = preg_replace('/[\n\r]+/', '', $biz['name']); $business_details_name = preg_replace('/[\s]+/', ' ', $line_out_name); $line_out_address = preg_replace('/[\r]+/', '', $biz['address']); $business_details_address = preg_replace('/[\s]+/', ' ', $line_out_address); $business_address=explode(",",$business_details_address); $add1=explode(" ",$business_address[0]); $add=$add1[0]." ".$add1[1]." ".$add1[2]; $add1=$add1[3]." ".$add1[4]; $add2=explode("b/t",$business_address[1]); $s=explode(" ",$add2[0]); $state=$s[1]; $zip=$s[2]; $lastadd="b/t".$add2[1]; $line_out_phone = preg_replace('/[\n\r]+/', '', $biz['phone']); $business_details_phone = preg_replace('/[\s]+/', ' ', $line_out_phone); $business_details_phone = preg_replace('/Phone number/','', $business_details_phone); $line_out_website = preg_replace('/[\n\r]+/', '', $biz['website']); $business_details_website = preg_replace('/Business website/','', $line_out_website); $business_details_website = preg_replace('/[\s]+/', '', $business_details_website); $business_details_website = "http://".$business_details_website; $business[0]= stripslashes(htmlspecialchars($business_details_name)); $business[1]= stripslashes($add); $business[2]= stripslashes($add1); $business[3]= stripslashes($state); $business[4]= stripslashes($zip); $business[5]= stripslashes($lastadd); $business[6]= stripslashes($business_details_phone); $business[7]= stripslashes($business_details_website); $business[8]= stripslashes($biz['yelp_url']); array_push($csv_records,($business[0]),$business[1],$business[2],$business[3],$business[4],$business[5],$business[6],$business[7],$business[8]); if (false !== $handle) { fputcsv($handle,$csv_records); } $csv_records = array(); } #foreach ends $pokemon_row } #if ends $pokemon_row->length > 0 }#if(!empty($html)) $business1 = ""; }#for ($i = 1; $i < 5; $i++) end ?>
Output for 7.1.20, 7.2.6
Warning: fopen(): open_basedir restriction in effect. File(1441975255_data.csv) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 7 Warning: fopen(1441975255_data.csv): failed to open stream: Operation not permitted in /in/RcnR3 on line 7 Warning: fputcsv() expects parameter 1 to be resource, boolean given in /in/RcnR3 on line 10 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=0) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=0): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=10) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=10): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=20) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=20): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=30) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=30): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=40) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=40): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=50) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=50): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=60) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=60): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=70) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=70): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=80) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=80): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=90) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=90): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=100) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=100): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=110) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=110): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=120) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=120): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=130) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=130): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=140) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=140): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=150) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=150): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=160) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=160): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=170) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=170): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=180) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=180): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=190) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=190): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=200) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=200): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=210) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=210): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=220) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=220): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=230) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=230): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=240) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=240): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=250) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=250): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=260) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=260): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=270) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=270): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=280) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=280): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=290) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=290): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=300) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=300): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=310) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=310): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=320) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=320): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=330) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=330): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=340) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=340): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=350) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=350): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=360) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=360): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=370) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=370): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=380) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=380): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=390) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=390): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=400) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=400): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=410) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=410): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=420) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=420): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=430) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=430): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=440) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=440): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=450) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=450): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=460) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=460): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=470) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=470): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=480) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=480): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=490) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=490): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=500) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=500): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=510) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=510): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=520) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=520): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=530) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=530): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=540) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=540): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=550) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=550): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=560) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=560): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=570) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=570): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=580) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=580): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=590) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=590): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=600) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=600): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=610) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=610): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=620) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=620): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=630) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=630): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=640) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=640): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=650) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=650): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=660) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=660): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=670) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=670): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=680) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=680): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=690) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=690): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=700) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=700): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=710) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=710): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=720) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=720): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=730) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=730): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=740) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=740): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=750) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=750): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=760) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=760): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=770) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=770): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=780) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=780): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=790) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=790): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=800) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=800): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=810) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=810): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=820) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=820): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=830) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=830): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=840) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=840): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=850) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=850): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=860) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=860): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=870) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=870): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=880) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=880): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=890) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=890): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=900) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=900): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=910) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=910): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=920) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=920): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=930) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=930): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=940) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=940): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=950) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=950): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=960) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=960): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=970) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=970): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=980) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=980): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=990) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=990): failed to open stream: Operation not permitted in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(): open_basedir restriction in effect. File(&start=1000) is not within the allowed path(s): (/tmp:/in) in /in/RcnR3 on line 19 Warning: file_get_contents(&start=1000): failed to open stream: Operation not permitted in /in/RcnR3 on line 19
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.37, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.7
Warning: fopen(1441975255_data.csv): failed to open stream: Permission denied in /in/RcnR3 on line 7 Warning: fputcsv() expects parameter 1 to be resource, boolean given in /in/RcnR3 on line 10 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=0): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=10): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=20): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=30): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=40): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=50): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=60): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=70): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=80): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=90): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=100): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=110): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=120): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=130): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=140): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=150): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=160): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=170): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=180): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=190): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=200): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=210): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=220): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=230): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=240): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=250): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=260): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=270): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=280): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=290): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=300): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=310): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=320): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=330): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=340): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=350): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=360): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=370): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=380): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=390): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=400): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=410): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=420): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=430): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=440): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=450): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=460): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=470): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=480): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=490): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=500): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=510): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=520): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=530): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=540): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=550): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=560): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=570): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=580): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=590): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=600): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=610): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=620): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=630): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=640): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=650): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=660): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=670): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=680): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=690): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=700): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=710): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=720): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=730): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=740): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=750): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=760): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=770): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=780): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=790): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=800): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=810): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=820): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=830): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=840): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=850): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=860): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=870): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=880): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=890): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=900): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=910): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=920): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=930): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=940): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=950): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=960): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=970): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=980): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=990): failed to open stream: No such file or directory in /in/RcnR3 on line 19 Notice: Undefined offset: 1 in /in/RcnR3 on line 19 Warning: file_get_contents(&start=1000): failed to open stream: No such file or directory in /in/RcnR3 on line 19

preferences:
162.14 ms | 438 KiB | 128 Q