preload

PHP allows to change some settings mentioned in php.ini for the current script via ini_set(). This function requires two string arguments. First one is the setting name and the second one is the value. 

For an example think that your script is in a remote server and it has disabled display_errors setting. If you are still developing your application and would like to see errors in web browser then you can enable this setting as below.

ini_set('display_errors', '1');
You may put above statement at the top of your script so that the setting will be enabled till the end of the script.
Values you set via ini_set() are applicable only to current script. Thereafter PHP would continue to use original values from php.ini

To avoid doubts, before changing a setting via ini_set(), you would need to identify whether PHP allows to change the particular setting via ini_set(). In PHP manual, it lists all the available settings in php.ini. In this list there is a column called Changeable. According to definitions of the values in this column, you can only change the settings mentioned as PHP_INI_USER or PHP_INI_ALL.

ini_get()

This function accepts a setting name as the argument and returns its current value. If you placed this function after ini_set(), you would notice that it returns the newly assigned value (not the original php.ini value).

get_cfg_var()

This function is similar to ini_get(). Difference is it returns the original value in php.ini even after an ini_set(). To illustrate this, make sure you have enabled display_errors in your php.ini and run following script.
01.<?php
02. 
03.ini_set('display_errors', '0');
04. 
05.echo ini_get('display_errors');
06.echo '<br />';
07.echo get_cfg_var('display_errors');
08. 
09.?>
You would see the output as below.
0
1

error_reporting()

This function instructs the PHP interpreter on which type of errors should be reported for current script. 
For an example, to make sure all the errors are reported for current script, you can call this function at the top of your script as below.
error_reporting(E_ALL);

Following statement would turn off all error reporting for the current script.
error_reporting(0);
And following will enable all error reporting for the current script.
error_reporting(-1);
error_reporting() is a special function to change the error_reporting setting. It’s also possible to do the changes via ini_set(). For an example, following would enable reporting of all errors in current script (similar to error_reporting(E_ALL)).
ini_set('error_reporting', E_ALL);

Read More...

PHP.ini is very useful and it is a configuration file that is used to customize behavior of PHP at runtime. This enables easy administration in the way you administer Apache web server using configuration files. The Settings in which upload directory, register global variables, display errors, log errors, max uploading size setting, maximum time to execute a script and other configurations is written in this file.

When PHP Server starts up it looks for PHP.ini file first to load various values for settings. If you made changes in PHP.ini then you need to restart your server to check the changes be effected. Default php.ini file of web server.the copy of this ini file can be found in /usr/local/lib/php/ for UNIX installation.

If you want to do some custom configurations then you can also write your own php.ini file. For this copy php.ini template file, make necessary changes in values directives according to your need rename it to php.ini then copy it to desired location in root of your web directory or in any particular folder. But hosting should allow for running this file. The PHP runtime will take values only for settings which are specified in php.ini file if you are using your own, for rest of settings it will take defaults of PHP runtime. So if you are writing your own php.ini, keep in mind to overwrite every settings specified in web server’s php.ini file this cannot be used as an extension of web server’s php.ini file

Read More...

PHP Stands for Hypertext PreProcessor

PHP is a server-side, cross-platform, HTML embedded scripting language.

That's a mouthful, but if we break the definition down into smaller pieces, it is easier to understand.

server-side: This means that PHP scripts execute on the Web server, not within the browser on your local machine.

cross-platform: Cross-platform means that PHP scripts can run on many different operating systems and Web servers. PHP is available for the two most popular Web server configurations (IIS running on Windows NT and Apache running on UNIX).

HTML embedded scripting language: This means that PHP statements and commands are actually embedded in your HTML documents. When the Web server sees the PHP statements in the Web page, the server executes the statements and sends the resulting output along with the rest of the HTML. PHP commands are parsed by the server much like Active Server Pages or Cold Fusion tags.

Read More...

Contact Us

Gmail
nmohanswe
Facebook
nmohanswe
Twitter
nmohanswe
Skype
nmohanswe