15:48:30
 Frissítés
Keresés | Új hozzászólás
 » Isten hozott, kedves Vendég ! Fórumlakók | GY.I.K. | Bejelentkezés | Regisztráció 
 » Társalgó
Téma: PHP
... Elejére 1. lap 
R.András
Olvasta: 11 | Válasz | 2018. január 03. 16:18 | Sorszám: 166
Function arguments
PHP supports passing arguments by value (the default), passing by reference, and default
argument values. Variable-length argument lists are also supported.
... http://php.net/manual/en/functions.arguments.php#functions.arguments.by-refer ...
R.András
Olvasta: 11 | Válasz | 2018. január 01. 16:00 | Sorszám: 165
int filesize ( string $filename )
... http://php.net/manual/en/function.filesize.php
R.András
Olvasta: 11 | Válasz | 2017. december 27. 10:26 | Sorszám: 164
string strtoupper ( string $string )
... http://php.net/manual/en/function.strtoupper.php
panda
Olvasta: 12 | Válasz | 2013. november 16. 14:41 | Sorszám: 163
http://www.codecademy.com/tracks/php
Rendes Kis
Olvasta: 12 | Válasz | 2013. november 16. 10:25 | Sorszám: 162
boolean operators: http://php.net/manual/en/language.operators.logical.php
Rendes Kis
Olvasta: 12 | Válasz | 2011. május 23. 08:43 | Sorszám: 161
In addition to the basic assignment operator, there are "combined operators" for all of the binary arithmetic, array union and string operators that allow you to use a value in an expression and then set its value to the result of that expression. For example:
<?php

$a = 3;
$a += 5; // sets $a to 8, as if we had said: $a = $a + 5;
$b = "Hello ";
$b .= "There!"; // sets $b to "Hello There!", just like $b = $b . "There!";

?>
... http://www.php.net/manual/en/language.operators.assignment.php
Rendes Kis
Olvasta: 12 | Válasz | 2011. május 23. 08:40 | Sorszám: 160
Example #2 Passing function parameters by reference
<?php
function add_some_extra(&$string)
{
$string .= 'and something extra.';
}
$str = 'This is a string, ';
add_some_extra($str);
echo $str; // outputs 'This is a string, and something extra.'
?>
... http://www.php.net/manual/en/functions.arguments.php#functions.arguments.by-r ...
Rendes Kis
Olvasta: 12 | Válasz | 2011. május 20. 18:54 | Sorszám: 159
http://php.net/manual/en/control-structures.elseif.php
Rendes Kis
Olvasta: 12 | Válasz | 2011. május 17. 07:14 | Sorszám: 158
http://php.net/manual/en/function.substr.php
Tovább ...
Jelmagyarázat    Van új hozzászólás
   Ezeket a hozzászólásokat már láttad
... Hibabejelentés | | | Gondola ...