вторник, 13 декабря 2011 г.

PHP mainigie

Nedriks sakties ar skaitli;
drikst ar burtu vai zemsvitru;
nedrikst saukties this;

Predefinētie mainigie:
$GLOBALS                          (globalie mainigi)
$_SERVER                         (servera informacija)
$_GET 
$_POST
$_FILES                                (faili)
$_REQUEST                         (pieprasijuma informacija)  
$_SESSION
$_ENV                                  (Vide)
$_COOKIE
$php_errormsg
$HTTP_RAW_POST_DATA  (post datu)
$http_response_header
$argc                                  (argumenti)
$argv
_________________________________

<?
$a = 'Hello World!';

function test(){
global $a;
echo $a;
}

test();

?>
_________________________________
<?PHP


$a = 'hello';

$hello = 'World';

echo $$a;

?>
return World
_____________________________
Konstantes. ir jaraksta lieliem burtiem! Konstantes super globālas.
<?
define('KONSTANTE','vertiba');
echo KONSTANTE;
?>

__________________________________
sligts tonis:
<?

function test(){
$a = 'Hello World!';
echo $a;
}

test();

?>
__________________________________
labs tonis:
<?

function test(){
$a = 'Hello World!';
return $a;
}

echo test();
?>
vai
<?

function test(){
$a = 'Hello World!';
return $a;
}

$result = test();
echo $result;

?>
______________________________________




















Комментариев нет:

Отправить комментарий