Jump to content
  • 0

парсер на удаление квадратиков после html


dima4321
 Share

Question

Всем привет.

Случилась беда. При массовой вставке счетиков в html файлы переименовке контента и т.п случилось, что моя прога сдала сбой

и наклепала каких-то симоволов которые отображаются как маленькие прямоугольнички т.е эти символы не относятся

ни к коду iso-8859-1 ни к windows 1251 . Из за этого Валидатор не может утвердить мой код.

Эти прямоугольнички иудт сразу после закрытия тега </html>

Т.е

<html>

текст теги и т.п (все правильно)

</html> а вот здесь после закрытия html тега несколько прямоугольничков.

Нужен парсер или какая-нибудь прога .... может есть

Помогите пожалуйста ??

Могу пообещть несколько webmoney на пиво !!!

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Улучшаем.

$html = ''; 
$dir = opendir('Ваша папка');
while ( $file = readdir($dir) )
{
if ( $file != "." && $file != ".." && !is_dir($file) )
$html = implode( "", file( $file ) );
$html = preg_replace('/<html>(.+)<\/html>/si', '$1', $html);
}
сlosedir($dir);

to dima4321 В регулярке, можно не все строки сканить.

Link to comment
Share on other sites

  • 0

<?php

error_reporting(E_ALL);

set_time_limit(0);

define('SLASH', DIRECTORY_SEPARATOR);

function ReplaceIt($path) {

if(is_dir($path)) {

$files = scandir($path);

foreach($files as $name) {

if($name === '.' || $name === '..') continue;

if(is_dir($path.SLASH.$name)) {

ReplaceIt($path.SLASH.$name);

continue;

} else file_put_contents($path.SLASH.$name,

preg_replace('/<html>(.+)<\/html>/si', '$1',

file_get_contents($path.SLASH.$name)

)

);

}

} else echo "Invalid path";

}

ReplaceIt(dirname(__FILE__));

?>

Почему этот парсер удаляет тег </html> , а все что за ним не удаляет ??

МОжет у вас он корректно работает ??

Edited by dima4321
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy