Answer the question
In order to leave comments, you need to log in
Where does string truncation happen in nokogiri?
Tell me how to remove line truncation in nokogiri.
Here is a small example.
<?php
$parce=new nokogiri($html);
$arr = $parce->get('td [colspan=2]')->toArray();
print_r($arr[0]['#text']);
?>
Outputs a string with a length of 630-730 characters. What it depends on and how to deal with it, although in reality there should be more symbols
Answer the question
In order to leave comments, you need to log in
$parce = new nokogiri($html);
$arr = $parce->get('td [colspan=2]')->toArray();
var_dump($arr[0]['#text'], strlen($arr[0]['#text']), mb_strlen($arr[0]['#text'], 'UTF-8'));
/*
string(691) "
Сдам квартиру по адресу Минск, Филимонова, 43 (р-н Автовокзал Московский) на длительный срок без посредников. Сдам в аренду двухкомнатную квартиру на длительный срок. Кирпичный дом, комнаты 17, 3 м2, 12, 6 м2, кухня 10, 5 м2, стеклопакеты, железная дверь, санузел раздельный после капитального ремонта, балкон, телефон, интернет, мебель, стиральная машина, 10 минут ходьбы до м. Московская.
"
int(691)
int(396)
*/
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question