EN VI
Posts (9)
Questions (26)
2024-03-12 06:30:05
Your regexp has the following constraints on words: ^(?![aeiou]{3,}) - Can't begin with 3 or more consecutive vowels (?![^aeiou]{4,} - Can't have 4 or more consecutive consonants in the middle (?![ae...
Tags: PHP regex quantifiers
2024-03-12 07:00:05
Your regexp has the following constraints on words: ^(?![aeiou]{3,}) - Can't begin with 3 or more consecutive vowels (?![^aeiou]{4,} - Can't have 4 or more consecutive consonants in the middle (?![ae...
Tags: PHP regex quantifiers
2024-03-12 11:00:05
The problem is you have the same code in the create comment function. public function CreateComment( Request $request) { // create a function that inserts data to data base ( create a...
Tags: PHP MySQL Laravel
2024-03-12 14:00:09
The answer is : the session variables lifetime's end-time will be "re-calculated" when the start_session() is called again. It is because the garbage collection process is designed to abandon "inactiv...
Tags: PHP session
2024-03-12 16:00:12
It is related on how php treats "Reference" you can find more info here: https://www.php.net/manual/en/language.references.whatare.php and here: https://www.php.net/manual/en/language.references.arent...
Tags: PHP clone
2024-03-14 18:30:05
Since the month names in your example are simple strings and hold no information about order per se, its probably best to build a list that only contains months "greater" or "lesser" than the month in...
Tags: PHP Laravel
2024-03-14 23:00:10
You could try redirecting the output of the PHP -S command to /dev/null if you don't care about it at all: php -S 0.0.0.0:8181 &> /dev/null Bear in mind, you should be using the PHP builtin service i...
Tags: PHP debian
2024-03-15 01:00:04
Based on your comments I think this should work. Since your array keys are the same as the values we'll just manually keep track of the index. The way you are building the parameters you are effective...
2024-03-15 01:00:08
It seems like you're trying to retrieve image URLs from Pixiv and display them on your webpage. However, you're encountering 403 Forbidden errors, likely due to Pixiv's restrictions on outside access....

Login


Forgot Your Password?

Create Account


Lost your password? Please enter your email address. You will receive a link to create a new password.

Reset Password

Back to login