Skip to content

Instantly share code, notes, and snippets.

@YurePereira
Last active February 7, 2017 13:23
Show Gist options
  • Select an option

  • Save YurePereira/0b7a9657efd291a7df466a003dba522c to your computer and use it in GitHub Desktop.

Select an option

Save YurePereira/0b7a9657efd291a7df466a003dba522c to your computer and use it in GitHub Desktop.
Create a numeric Array in the PHP
<?php
$myNumericArray = array(
100,// Tipo de dado numérico
new DateTime(),// Tipo de dado Object
'String Any',// Tipo de dado String
89,
90
);
var_dump($myNumericArray);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment