Igor Lugis
Igor Lugis
as workaround I did it that way: ``` php $title = $row->find('#listItem')->text(); foreach ($row->find('#listItem')->children() as $v) $title = str_replace($v->text(), '', $title); $title = trim($title); ``` But of course, it's not...
Common use for this is checking if the record exists: ```php $insert = [ 'name' => 'John', 'age' => 35, 'sex' => 'Y', etc... ]; if (!QB::table('my_table')->where($insert)->first()) QB::table('my_table')->insert($insert); ``` So...
There's no simple way to do this in PDO. [Documentation](https://www.php.net/manual/en/pdo.connections.php) suggests: > To close the connection, you need to destroy the object by ensuring that all remaining references to it...
is there any solution to this?
that will be very useful.
@vitoo it's unrelated. i haven't met any of ASK/BID errors and the data cuts anyway. ``` Past Time is 1513042626 and current time is 1513042567 and periodcheck is 59 Past...
I tried to debug why this happens but can't figure it out. What is the reason of data loss?
I am really surprised these doesn't work in hQuery. @duzun Dumitru, do you still use your library?
Some of the dependencies are throwing error at php 5.3.3 so, php 5.3 support is dropped really. ```Parse error: syntax error, unexpected '[' in .../public_html/contract/vendor/zendframework/zend-stdlib/src/StringUtils.php on line 34```