xicond

Results 22 comments of xicond

if you use edgardmessias/yii2-informix how come it come into yii2 \yii\db\Command::queryInternal It suppose overrided by edgardmessias/yii2-informix I think, Or maybe extension pdo_informix has bug try check this reference https://www.php.net/manual/en/ref.pdo-informix.php#ref.pdo-informix.features.cursors ```...

yeah, based on v2.0.9, you can override built in but after v2.0.36, you cannot override builtin validator, because of #14370 issue so you may change the custom name validator

> Just like Ryan, I ended up using `sed` to string-replace the resulting index.html in a post-build script: > > `sed -i .bak 's/\/DARK_STATIC_ASSETS_BASE_URL/DARK_STATIC_ASSETS_BASE_URL/g' dist/index.html` > > _app-root/.env.dark_: `PUBLIC_PATH=DARK_STATIC_ASSETS_BASE_URL` >...

I still cannot make it work even it's reference to internal

Warning Prior to PHP 8.0.0, the error_reporting() called inside the custom error handler always returned 0 **if the error was suppressed by the @ operator**. As of PHP 8.0.0, it...

> set_error_handler(function($severity, $message, $file, $line) { > echo "Error handler called! Message: $message\n"; > echo "error_reporting() inside handler: " . error_reporting() . "\n"; // 4437 in PHP 8+ > return...

> Apparently the problem is in the processData($data, &$expressions, $expPrefix) of BaseJson.php > > In version 2.0.13 that I used, the if ($data === []) { return new \stdClass(); }...

can override @yii/helpers/mimeExtensions.php, to some custom path and merge original mimeExtensions.php with you own array

but the behavior is different `ORDER BY 1` will order by first column selected by default `ORDER BY (SELECT NULL)` sort by the value of a constant expression could be...