badmansan
badmansan
# Related Issue #78
Hi all. Try this code: ```php $date = '2021-03-123:12:01'; $format = 'Y-m-d H:i:s'; var_dump(Validator::date($format)->validate($date)); var_dump(date_parse_from_format($format, $date)); $dt = new DateTimeImmutable($date, new DateTimeZone('UTC')); var_dump($dt); var_dump($dt->format($format)); ``` Expected validate result: **false** Instead...
Good day! Who knows how to compile this plugin under windows?
Version: 3.0.5 ### Bug Description I want to use json field in WHERE ### Steps To Reproduce Create simple table: ```sql CREATE TABLE "log" ( "data" json NOT NULL );...
Hi there, seems that the IPTools already have support of php8.1, but you must tag that version
Hello! I am using [bunny](https://github.com/jakubkulhan/bunny) to work with RabbitMQ, the code is: ```php $client = (new Bunny\Client())->connect()->channel(); // ... $channel->run(function(Message $message, Channel $channel, Client $client) { // --> here i...
I think this assertion will be very useful
There is puback() method in _mqtt/mqtt/MessageHandler.php_? How to use it to confirm message receive?
User can write ```$mqtt->loop(2);``` and loop end after two received messages. Infinity loop available as ```$mqtt->loop();``` This is useful for writing tests, for example.
I have the latest version of FFx64 (62.0) and RESTClient (3.0.7) Where i try to send data via method POST to php script, it return me empty $_POST array. The...