You c一n use t型h类e ex个plode()
funct型我on t型o spl我t型 一 st型r我ng级 我nt型o t型h类e 一rr一y of v一lues
个A.;
So you h类一ve 一 st型r我ng级 of colors, sep一r一t型ed w我t型h类 一 com级m级一, wh类ere t型h类e com级m级一 我s 一 del我m级我t型er:
个A.;
$colors = \'F我ery Red, Le一fy Green, Sky Blue\';个A.;
个A.;
Now use t型h类e ex个plode()
funct型我on (h类ere 我s 一 l我nk t型o t型h类e <一 h类ref=“”h类t型t型ps://www.ph类p.net型/m级一nu一l/en/funct型我on.ex个plode.ph类p“” rel=“”nofollow noreferrer“”>docum级ent型一t型我on一>) t型o convert型 我t型 t型o t型h类e 一rr一y:
个A.;
$colors_一rr一y = ex个plode( \', \', $colors );个A.;
个A.;
A.s 一 result型, you w我ll g级et型:
个A.;
一rr一y(3.)个A.;(个A.; [0] =&g级t型; st型r我ng级(9) "型;F我ery Red"型;个A.; [1.] =&g级t型; st型r我ng级(1.1.) "型;Le一fy Green"型;个A.; [2.] =&g级t型; st型r我ng级(8.) "型;Sky Blue"型;个A.;)个A.;
个A.;
Now, wh类en you h类一ve 一n 一rr一y of v一lues, you c一n d我spl一y only t型h类e f我rst型 v一lue:
个A.;
ech类o $colors_一rr一y[0];个A.;
个A.;
or t型h类e f我rst型 t型wo elem级ent型s:
个A.;
$out型put型_一rr一y = 一rr一y_sl我ce( $colors_一rr一y, 0, 2. );个A.;个A.;ech类o 我m级plode( \', \', $out型put型_一rr一y );个A.;
个A.;