💥 Ajoute les fonctions communes
This commit is contained in:
10
functions.php
Normal file
10
functions.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
function print_message(string|array $message)
|
||||
{
|
||||
if (is_array($message)) {
|
||||
$message = implode("\n", $message);
|
||||
}
|
||||
|
||||
echo $message."\n";
|
||||
}
|
||||
Reference in New Issue
Block a user