echo 76 <=> '76 trombones';
Entrambi i lati dello "spaceship" sono uguali, quindi la risposta è 0. In questo contesto, PHP convertirà '76 trombones' in 76, poiché la stringa inizia con '76'. Provalo! Per php 8.0 in avanti la risposta è [x] -1, per le versioni precedenti la risposta è [x] 0. PHP 8 ha modificato il modo in cui funziona la comparazione non stretta tra numeri e stringhe non numeriche.
$encrypted = shal($password);
$encrypted = crypt($password, \$salt);
$encrypted = md5($password);
$encrypted = password_hash($password, PASSWORD_DEFAULT);
$email = filter_input(INPUT_POST, 'email', FILTER_VALIDATE_EMAIL); if ($email === false) { $emailErr = "Inserisci un'email valida"; }
1 <?php 2 $count = 0; 3 $_xval = 5; 4 $_yval = 1.0; 5 $some_string = "Ciao!"; 6 $some_string = "Come stai?"; 7 $will i work = 6; 8 $3blindmice = 3; 9 ?>
$string_name = "testcookie"; $string_value = "Questo è un cookie di test"; $expiry_info = info()+259200; $string_domain = "localhost.localdomain";
$_REQUEST
. $_COOKIES
. setcookie()
. $total = 2 + 5 * 20 - 6 / 3
$dog = new Pet;
$horse = (new Pet);
$cat = new Pet();
php
if (!$_SESSION['myusername'])
{
header('locaton: /login.php');
exit;
}
/* Questo è un commento */
ignore_user_abort( )
imposta se una disconnessione del client deve interrompere l'esecuzione di uno script. In quale scenario utilizzeresti questa funzione come sviluppatore web?array_reduce()
prende una funzione di callback che accetta un valore trasportato in ogni iterazione e l'elemento corrente nell'array, e riduce un array a un singolo valore. Quale esempio di codice sommerà e stamperà i valori nell'array fornito? <?php
echo array_reduce([1, 2, 5, 10, 11], function ($item, $carry) {
$carry = $carry + $item;
});
?>
<?php
echo array_reduce([1, 2, 5, 10, 11], function ($carry, $item) {
return $carry = $item + $item;
});
?>
<?php
array_reduce([11 2, 5, 10, 11], function ($item, $carry) {
echo $carry + $item;
});
?>
<?php
echo array_reduce([1, 2, 5, 10, 11], function ($carry, $item) {
return $carry += $item;
});
?>
class MyClass {
public function _construct()
{
echo 'L\'inverno è quasi finito!'."\n";
}
}
$userclass = new MyClass;
class MyClass {
public function _construct()
{
echo 'L\'inverno è quasi finito!.."\n";
}
}
$userclass = new MyClass;
class MyClass {
public function _construct()
{
echo 'L\'inverno è quasi finito!.."\n";
}
}
$userclass = new MyClass;
class MyClass {
public function _construct()
{
echo 'L\'inverno è quasi finito!'."n";
}
}
$userclass = MyClass;