“PHP PREG_REPLACE CALLBACK” Code-Antworten

PREG_REPLACE


<?php
$string = 'April 15, 2003';
$pattern = '/(\w+) (\d+), (\d+)/i';
$replacement = '${1}1,$3';
echo preg_replace($pattern, $replacement, $string);
Expensive Eagle

PREG_REPLACE -Beispiele

# Strip HTML tag
$result = preg_replace('#<span id="15">.*</span>#m', '', $string);
Thomas Newman

PHP PREG_REPLACE CALLBACK

$text = preg_replace_callback(

"/\\[\\[([^|]+\\|)(.*?)\\]\\]/",

[ $this, 'linkReplace' ],

$text

);

$text = preg_replace( "/<\/?[^>]+>/", "", $text );
return $text;
Crazy Crane

Ähnliche Antworten wie “PHP PREG_REPLACE CALLBACK”

Fragen ähnlich wie “PHP PREG_REPLACE CALLBACK”

Weitere verwandte Antworten zu “PHP PREG_REPLACE CALLBACK” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen