0

うまくいけば、誰かが画像を生成するときにユーザーの引用を保持する方法を教えてくれるでしょう。つまり、ユーザーが次のような単語を送信した場合です。

しないでください

また

ジョンは「こんにちは」と言いました

生成された画像にそれらを保持するにはどうすればよいですか。現在は

しないでください

これが私のコードです:

<?php


function formattextimg( $text, $width = 960, $color = array( 0, 0, 0 ),$bgcolor = array( 255, 255, 255 ), $font = 2 ) {
$width = ( ( isset( $width ) && is_numeric( $width ) ) ? ( ( $width >= 100 ) ? (int)$width : 100 ) : 960 );
$text = str_replace( array( '<b>', '</b>', '<strong>', '</strong>' ), '|', $text );
$text_b = preg_split( '/\|/', $text, -1, PREG_SPLIT_OFFSET_CAPTURE );
foreach($text_b as $k => $tb){if($k%2!=0){$textbold[($tb[1]-1)]=$tb[0];}}
$text = str_replace('|','',$text);
for( $i = 0; $i < strlen( $text ); $i++ ) {
    if( $string_c >= ( $width - ( (int)(imagefontwidth( $font ) / 2 ) ) ) ) {
        $space = strrpos( $string, ' ' );
        $string_sub = substr( $string, 0, $space );
        $i = $i - ( strlen( $string ) - $space ) + 1;
        $strings[] = $string_sub;
        $string = '';
        $string_c = 0;
    }
    $string .= $text{$i};
    $string_c += imagefontwidth( $font );
}
$strings[] = $string;

$im = imagecreatetruecolor( $width, ( imagefontheight( $font ) * ( count( $strings ) ) ) );
imagesavealpha( $im, true );
$trans = imagecolorallocate( $im, $bgcolor[0], $bgcolor[1], $bgcolor[2] );
imagefill( $im, 0, 0, $trans );
$color = imagecolorallocate( $im, $color[0], $color[1], $color[2] );
$black = imagecolorallocate( $im, 0, 0, 0 );
foreach( $strings as $pos => $string ) {
    imagestring( $im, $font, 5, ( $pos * imagefontheight( $font ) ), $string, $color );
}
$len = 0;
foreach( $strings as $pos => $string ) {
    $len += ( strlen( $string ) + 1 );
    if( count( $textbold ) > 0 ) {
        foreach( $textbold as $cpos => $word ) {
            if( $cpos <= $len ) {
                $wpos = strpos( $string, $word );
                if( $wpos !== false ) {
                    imagestring( $im, $font, 
                        ( $wpos * imagefontwidth( $font ) )+1, 
                        ( ( $pos ) * imagefontheight( $font ) ), 
                        $word, $color
                    );
                        unset( $textbold[$cpos] );
                    }
                }
        }
        }
    }
    return $im;
}

header( 'Content-type: image/png' );
imagepng( formattextimg( $text,300,array( 255, 255, 255 ),array( 128, 128, 128 ),16 ) );
exit;
?>

それが不可能な場合、誰かが削除する方法を教えてください:

'

「」

私は試した:

$text=$_REQUEST['text'];
$text=str_replace('"', "", $text);
$text=str_replace("'", "", $text);

しかし、それは機能しませんでした。

ありがとう

4

1 に答える 1

0

これは、サーバーでmagic_quotes_gpcが有効になっていることが原因です。

if ( manual ) return truemagic_quotes_gpcを呼び出すことで、 の効果を逆にすることができます。stripslashesget_magic_quotes_gpc

$text = $_REQUEST['text'];

if (get_magic_quotes_gpc())
{
    $text = stripslashes($text);
}

この機能は PHP 5.3 で廃止され、PHP 5.4 から完全に削除されたため、stripslashes を呼び出す前に get_magic_quotes の値を実際に確認することが重要です。

于 2013-01-22T23:22:30.063 に答える