Absolute path error Resolution in PHP

Source: Internet
Author: User
Absolute path Error in PHP
I am in PHP open a TXT file, with an absolute path, but error.
$file = fopen (".. /php.txt "," R ");
$filesize = FileSize ("PHp.txt");
Echo fread ($file, $filesize);
Fclose ($file);
?>

Warning:fopen (.. /php.txt) [function.fopen]: failed to open stream:no such file or directory in F:\APMServ5.2.6\APMServ5.2.6\www\htdocs\ne Wfile.php on line 7

Warning:filesize () [Function.filesize]: Stat failed for PHp.txt in F:\APMServ5.2.6\APMServ5.2.6\www\htdocs\ Newfile.php on line 8

Warning:fread (): supplied argument is not a valid stream resource in F:\APMServ5.2.6\APMServ5.2.6\www\htdocs\newfile.php On line 9

Warning:fclose (): supplied argument is not a valid stream resource in F:\APMServ5.2.6\APMServ5.2.6\www\htdocs\newfile.ph P on line 10

------Solution--------------------
Put it in your project folder. It is currently outside the root directory.
------Solution--------------------
Your program is F:\APMServ5.2.6\APMServ5.2.6\www\htdocs\newfile.php.
Your files are in C:\Users\Administrator\Desktop\PHP.txt.

So access to PHP.txt requires

$FN = ' c:/users/administrator/desktop/php.txt ';
$file = fopen ($FN, "R");
$filesize = FileSize ($FN);
Echo fread ($file, $filesize);
Fclose ($file);
  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.