answersLogoWhite

0

What program can read php file?

User Avatar

Anonymous

14y ago
Updated: 8/19/2019

PHP files are plain text, so you can read them with your text editor or IDE of choice.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What is the Malay-utf-8.inc. php file?

This particular file is a file specific to the PHP program or script you are using. It is not a "php system file".


How do you use fopen to read PHP files?

To read PHP files using fopen in PHP, you would first need to open the file using fopen with "r" mode. This opens the file for reading. Remember to check if the file opened successfully, and then you can use functions like fread to read the content of the file. Finally, close the file with fclose when done.


Photoshop is not the correct program to open the php files How can you remove it to use the correct file?

Assuming you're talking about incorrect default file associations in Windows XP... Right click on the PHP file. Go to Open With > Choose Program. Select Wordpad or your fav PHP IDE and tick the "Always open this type of file with this program" box.


How run php program in wanp server in window?

Once you install wamp server. Any file with php extenstion like xyz.php you put in www folder will be executed as PHP file.


How can you read php file?

Open it up in a text editor such as notepad


What is a PHP file?

A PHP file is a text file containing code to be run on a webserver by a program called php. It's the most used dynamic page script engine as it is free and open source.Use the fopen() function to open files in PHP. The first parameter of this function is the file to be opened and the second parameter specifies in which mode the file should be opened


Is php a binary file?

No, PHP is text file with .php extension.


Can you open php file in your PC?

Since a PHP file basically is a text file, yes. But beware - opening and running a PHP file are not the same. If you want to run a PHP file, you will need a webserver with PHP module enabled.


What file extension is used to save a php file after code has been written into it?

The file extension for PHP is .php


How do you read pdf file in php?

You have to embed it or include it inside a special framework. You can find many ways by searching for "PDF in PHP" in a search engine.


What is the file extension .php?

A file whose extension is "*.php" are typically interpreted by the PHP language. (php.net)


How can you export data from MySQL to PDF using PHP?

If you know FPDF or simlar library which helps to make a PDF file, using PHP,you will be able to write to a PDF file out of data read from mysql tables.