ここで質問があります。ここ SO で掘り下げてきましたが、本当の取引が見つからないようです。
私はffを試しています:
<?php
$filename = $trantype . $delimiter . $dateToday . $fileExtension ;
//echo $filename . '<br/>';
$fileToOpen = $filepath . $filename;
echo "File To Open: " . $fileToOpen . '<br/>';
$string = file_get_contents($fileToOpen);
//$string = file_get_contents("../transactions/o/O_20120809.xx");
$json_array = json_decode($string, true);
echo "Echo: " . $json_array[0]['itemheader_sysid'] . '<br/>';
echo "The File Contents: " . $string;
?>
$string = file_get_contents('../transaction/o/O_20120809.xx') はスムーズに動作しますが、一方で $string = file_get_contents($fileToOpen); はスムーズに動作します。動作していないようで、ff: error; が表示されます。
Warning: file_get_contents(../transactions/o/0_20120809.xx) [function.file-get-contents]: failed to open stream: No such file or directory in C:\xampp\htdocs\xx\helper\upo.php on line 19
なんでそうなの?
どなたかお願いします。