998951619f
We did not intend to imply our copyrights last forever Closes #759
11 linhas
170 B
PHP
11 linhas
170 B
PHP
<?php
|
|
// Copyright 2004-2013 Facebook. All Rights Reserved.
|
|
|
|
function array_cse() {
|
|
$a = array(0,1,2,3,4);
|
|
$x = $a[2] + $a[2];
|
|
return $x;
|
|
}
|
|
|
|
var_dump(array_cse());
|