Preg_replace ve HTML / PHP içerik almak ve değiştirmek için preg_match

0 Cevap php

Ben bazı HTML / PHP içeriğini ayıklamak ve bir dizi içine koymak gerekir.

Here is what I have

Aşağıdaki kod örneği için bir dize denilen $ string içinde.

<html>
<?php myclass->my_function('First', 'Last'); ?>
<p>Some other content</p>
<?php myclass->my_function(1, 2, 3); ?>
</html>

Ben işlevlerden tüm değerleri bulmak ve preg_match ile bir diziye bunları özetlemek istiyorum. Sadece sınıfım-> my_function fonksiyon değerlerinin bulunması gerektiğini.

The array should look like this

$array = array(
   1 => array('First', 'Last'),
   2 => array(1,2,3),
);

Sonra [explode_id] ve sonuç olmalıdır tüm satırları değiştirmek preg_replace istiyorum:

<html>
[explode_1]
<p>Some other content</p>
[explode_2]
</html>

Teşekkürler!

0 Cevap