php string nach zeichen zerlegen

Solutions on MaxInterview for php string nach zeichen zerlegen by the best coders in the world

showing results for - "php string nach zeichen zerlegen"
Valeria
27 Apr 2016
1
2<?php
3// Beispiel 1
4$pizza  "Teil1 Teil2 Teil3 Teil4 Teil5 Teil6";
5$teile = explode(" "$pizza);
6echo $teile[0]; // Teil1
7echo $teile[1]; // Teil2
8
9// Beispiel 2
10$data "foo:*:1023:1000::/home/foo:/bin/sh";
11list($user$pass$uid$gid$gecos$home$shell) = explode(":"$data);
12echo $user// foo
13echo $pass// *
14
15?>
16
17