- coding standards

- typo fixes

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@293190 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Mark Wiesemann 2010-01-06 21:33:51 +00:00
parent ad8e1ac323
commit dbc0e13b43
2 changed files with 12 additions and 17 deletions

View file

@ -51,12 +51,9 @@
<?php
$link = 'uploads';
if(is_link($link))
{
if (is_link($link)) {
echo(readlink($link));
}
else
{
} else {
symlink('uploads.php', $link);
}
?>

View file

@ -70,33 +70,31 @@ echo phpversion('tidy');
<?php
// PHP_VERSION_ID is available as of PHP 5.2.7, if our
// version is lower than that, then emulate it
if(!defined('PHP_VERSION_ID'))
{
$version = explode('.',PHP_VERSION);
if (!defined('PHP_VERSION_ID')) {
$version = explode('.', PHP_VERSION);
define('PHP_VERSION_ID', ($version[0] * 10000 + $version[1] * 100 + $version[2]));
define('PHP_VERSION_ID', ($version[0] * 10000 + $version[1] * 100 + $version[2]));
}
// PHP_VERSION_ID is defined as a number, where the higher the number
// is, the newer a PHP version is used. Its defined as used in the above
// is, the newer a PHP version is used. It's defined as used in the above
// expression:
//
// $version_id = $major_version * 10000 + $minor_version * 100 + $release_version;
//
// Now with PHP_VERSION_ID we can check for features this PHP version
// may have, this doesn't require to use version_compare() everytime
// you check if the current php version may not support a feature.
// you check if the current PHP version may not support a feature.
//
// For example, we may here define the PHP_VERSION_* constants thats
// not available in versions prior to 5.2.7
if(PHP_VERSION_ID < 50207)
{
define('PHP_MAJOR_VERSION', $version[0]);
define('PHP_MINOR_VERSION', $version[1]);
define('PHP_RELEASE_VERSION', $version[2]);
if (PHP_VERSION_ID < 50207) {
define('PHP_MAJOR_VERSION', $version[0]);
define('PHP_MINOR_VERSION', $version[1]);
define('PHP_RELEASE_VERSION', $version[2]);
// and so on, ...
// and so on, ...
}
?>
]]>