answersLogoWhite

0

Is php a binary file

User Avatar

Anonymous

12y ago
Updated: 8/20/2019

No, PHP is text file with .php extension.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

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


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".


What is the file extension .php?

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


What is the usual file name extension for PHP?

.php


How do you create a DIV type file using PHP?

A file with the DIV file extension is a DivX Movie file, it cannot be created with PHP. PHP is a web programming language for web site building.


How do you create a PHP script?

To create a PHP script all you have to do is create a new file, then save the file as "filename.php". It must have a .php file extension.After that open the file and put in the PHP tags like shown.Then you write your PHP script within those tags and upload to your web space and check it out.


How do you convert an mp3 file in PHP?

PHP is a web page command file format, mp3 is an audio file format.So there is no conversion, as the PHP file leads you to the mp3 file location.


What files can contain PHP?

PHP code can be stored in any kind of file -- the extension of the file indicates what said file contains, but may not necessarily be true. The "php" extension is used to indicate PHP which is meant for execution and presentation.


Which type of file occupies less space text file or binary file?

binary file


How do you include a file in PHP?

To include a file in PHP all you need to do is use the include() function as I have shown you in the example below. <?php include("filename.php"); ?>


I have a HTML website I want to use a php script I have but the main php file has the info in it and I want it to be on the HTML site how can I embed or use the php code without using frames?

change the extention of the .HTML file to .php and then open the file that was previously HTML and put <?php include ("path/to/second/php/file.php"); ?> so for example if i have page1.HTML and page2.php i rename page1.HTML to page1.php and then put <?php include ("page2.php"); ?> where i want page2 to appear. Note: Any HTML file can be renamed to have a .php extention even if it doesnt contain any PHP.