Codeigniter preg_replace_callback

2 Cevap php

preg_replace_callback, geri arama gibi CodeIgniter bir kütüphane işlevi kullanmak için isterim. Benim şu anki başarısız girişimi şudur:

$content = preg_replace_callback('/href="(\S+)"/i',
    '$this->util->url_to_absolute("http://www.google.com","$matches[0]")',
    $content);

Ama herhangi bir başarı olmadı. I create_function kullanarak denedim, ama bu da işe alınamıyor. Herhangi bir yardım büyük mutluluk duyacağız.

2 Cevap

Php 5.3 olarak

$that = $this;
$content = preg_replace_callback($patt, function($matches) use ($that) {
    return $that->util->url_to_absolute("http://www.google.com", $matches[1]);
}, $content);

//or
$that = $this->util;
$content = preg_replace_callback($patt, function($matches) use ($that) {
    return $that->url_to_absolute("http://www.google.com", $matches[1]);
}, $content);

//or
$callback = array($this->util, 'url_to_absolute');
$content = preg_replace_callback($patt, function($matches) use ($callback) {
    return call_user_func($callback, "http://www.google.com", $matches[1]);
}, $content);

Bu daha fazla gibi bir şey olacaktır:

$content = preg_replace_callback(
    '/href="(\S+)"/i',
    create_function(
        '$matches',
        'return $this->util->url_to_absolute("http://www.google.com","$matches[1]")'),
    $content);

Ancak sorun, geri arama içine örneğini veya kendi sınıf örneğin içine bir geri kullanmanız gerekebilir böylece $ bu referans geri arama kapsam içinde geçerli olmayacak yani:

class fred {

    function callback1($matches) {
       return $this->util->url_to_absolute("http://www.google.com","$matches[1]");
    }

    function dostuff($content) {
        $content = preg_replace_callback(
            '/href="(\S+)"/i',
            array($this, 'callback1'),
            $content);
        return $content;
    }
}

, Sınıf fred varsayarsak ve DoStuff siz şu anda bu aramak için çalışıyoruz sınıf ve yöntem