PHP: Best way to get the first element of an array
2014-03-19
IN1, 2014-03-19 00:00:00
IN1, 2023-04-10 14:16:28


Q: how to determine the value of the first element of an array if the key is unknown ?

A: make use of the reset command to set the array pointer back to start and to get the value of the array's first element.

// associative array
$aArray = array(
    'foo' => 'bar', 
    'john' => 'doe'
);

// value of array's first element
$mValue = reset($aArray); // bar

// key of array's first element
$mKey = key(reset($aArray […]

PHP Float Werte vergleichen; auf Gleichheit prüfen | Rechenoperationen mit Float
2014-02-19
IN1, 2014-02-19 00:00:00
IN1, 2023-04-13 16:16:32


Will man in PHP Rechenoperationen mit Floats durchführen, gilt es einiges zu beachten. Dieser Artikel zeigt damit verbundene Probleme auf und stellt Lösungsansätze und Workarounds vor.

Aufgrund der endlichen Mantisse in der Fließkommadarstellung lassen sich solche Zahlen auf einem Computer nicht beliebig genau darstellen. Es handelt sich bei Fließkommazahlen (engl.: "Floats") um Näherungswerte, deren Genauigkeit abhängig ist von der voreingestellten &quot […]



This website uses Cookies to provide you with the best possible service. Please see our Privacy Policy for more information. Click the check box below to accept cookies. Then confirm with a click on "Save".