answersLogoWhite

0


Best Answer

We can write php extension is many way...

.php , .php5, .php4

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is php extension?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the default extension that most Web servers use to process php scripts?

PHP files extension is .php


What is the file extension .php?

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


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

The file extension for PHP is .php


Is php a binary file?

No, PHP is text file with .php extension.


What is the usual file name extension for PHP?

.php


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.


How do you get PHP codes for writing on an image?

You can use the GD extension for PHP to edit image files.


What is tpl in php?

.tpl is a file extension used by Smarty.


What is the file extension for a web form page?

.htm, .html or .php


What is the naming extension for a webpage?

with just plain HTML its .HTML, but if you want to use a server side language like php it will be .php


What is meant by PHP build is missing curl extension?

This means that the curl (Client URL) module is missing or has not been enabled.First - check your PHP extension folder for the curl module file (php_curl.dll in Windows). If it's missing, download it (a quick google search should reveal several places to retrieve the file) and place it in your PHP extension folde.Next, open your PHP.ini file and find the line:;extension=php_curl.dll... then remove the ;extension=php_curl.dllRestart apache and you should be right to go.Hope that helps.


What is meant by PECL in PHP?

PECL stands for PHP Extension Community Library and it is a repository for extensions which add additional functionality to the core PHP installation. An example would be the extension APC (Alternative PHP Cache) which allows you to setup a cache which optimizes the serving of intermediate code. When using a server, you can install the PECL repository and call upon it to download extensions as you require them.