|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull Requests
Pull requests:
HistoryAllCommentsChangesGit/SVN commits
[2021-12-03 17:44 UTC] cmb@php.net
[2021-12-03 17:45 UTC] cmb@php.net
-Status: Open
+Status: Verified
[2021-12-04 10:45 UTC] cmb@php.net
-Status: Verified
+Status: Closed
-Assigned To:
+Assigned To: cmb
[2021-12-04 10:45 UTC] cmb@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 19:00:01 2025 UTC |
Description: ------------ Write a file test.php with the content of the attached test script: Run this script with "php test.php" results in: Segmentation fault (core dumped) I use the php:apache Docker image. If I run the same script with the php:8.0-apache Docker image then it will return the correct: bool(true) Both docker images install mbstring with: docker-php-ext-install mbstring Test script: --------------- <?php var_dump(mb_check_encoding('Hello world', '7bit')); ?> Expected result: ---------------- bool(true) Actual result: -------------- Segmentation fault (core dumped)