PHP : remove char.
PHP : remove char.
Out of context: Reply #4
- Started
- Last post
- 5 Responses
- Pixter0
data = "id,tool,cert,";
data.split(",");
Bring a array with 4 elements, where the last is blankdata.pop();
Removes the last elementThem you have an array "data" with 3 elements (0, 1, 2)
I aways use that