Nasıl PHP parantez arasındaki her şeyi gidip?

0 Cevap php
Array(
[1] => put returns (between) paragraphs
[2] => (for) linebreak (add) 2 spaces at end
[3] => indent code by 4 (spaces!)
[4] => to make links
)

(Her değer için) parantez içindeki metni almak istiyorum:

  1. take only first match
  2. remove this match from the value
  3. write all matches to new array

: Fonksiyon diziler gibi görünmelkimlikir sonra

Array(
[1] => put returns paragraphs
[2] => linebreak (add) 2 spaces at end
[3] => indent code by 4
[4] => to make links
)
Array(
[1] => between
[2] => for
[3] => spaces!
[4] => 
)

What is the solution?

0 Cevap