[go: nahoru, domu]

Voting

: min(four, two)?
(Example: nine)

The Note You're Voting On

twitter/matt2000
9 years ago
As of PHP 5.4, we can create stdClass objects with some properties and values using the more beautiful form:

<?php
$object
= (object) [
'propertyOne' => 'foo',
'propertyTwo' => 42,
];
?>

<< Back to user notes page

To Top