PHPCourse/Variables/operation_de_nombres.php

20 lines
222 B
PHP
Raw Normal View History

2021-10-26 15:04:42 +02:00
<?php
function strlen(string $str, int $count) : int
{
return count($str);
}
echo strlen("salut");
$var = 'endmove';
hello('endmove');
function hello(string $pseudo = 'endmove') : string
{
$pseudo = 'endmove'
}