Last active
March 1, 2021 14:37
-
-
Save FrancoStino/48181ec5e302c3b7a65f3313250e95d2 to your computer and use it in GitHub Desktop.
Combine multiple array
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$livello1 = array("100"); | |
$descrizione1 = array("In ottone"); | |
foreach(array_combine($livello1, $descrizione1) as $livello => $descrizione) | |
{ | |
echo '"/\\\b'.$livello.'\\\b/",'; # "\\b" serve per comprendere l'intera singola stringa e metcharla | |
echo '"'.$descrizione.'",'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment