- Автор темы
- #1
Для просмотра скрытого содержимого вы должны войти или зарегистрироваться.
Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Перед поступлением переменной в JS, обработай её и убери все переносы:
PHP:$str = str_replace( array( "\r\n", "\r", "\n", " " ), " ", $str ); $str = trim($str);//Чтоб наверняка =))
function str_trim( $text )
{
$text = str_replace( array( "\r\n", "\r", "\n", "\t", " " ), " ", $text );
$text = explode( " ", $text );
for( $i = 0;$i <= count( $text );$i++ ) {
$str[] = trim( $text[$i] );
}
$str = implode( " ", $str );
return $str;
}