There is a line like text1-text2-text3-text4
It is necessary to assign values to it from variables, the values themselves are separated by the symbol -
It should be:
$a = text1; $b = text2; $c = text3; $d = text4; How to do?
There is a line like text1-text2-text3-text4
It is necessary to assign values to it from variables, the values themselves are separated by the symbol -
It should be:
$a = text1; $b = text2; $c = text3; $d = text4; How to do?
Source: https://ru.stackoverflow.com/questions/360413/
All Articles