Skip to content

Symfony missing bootstrap.php.cache

I am using continuous deployment with jenkins on AWS. Everything is OK, but when I look on my page, there is this error: Warning: require_once(/var/app/web/../app/bootstrap.php.cache): failed to open …

Generate random username based on full name php

I want to grab the first name in lowercase then concatenate the first two characters after the space and finally concatenate that with a random number from 0 to 100. So if my name is “Mike Test” I want the output to be: mikete3 My function outputs “mike te84” and I don’t know how…

Magento 2 Pagination

I can’t find a way to paginate my entities in magento 2. I have this code : public function getPosts() { if (!$this->hasData(‘posts’)) { $posts = $this->…

Mysqli last insert id not work

I am trying to get last query insert id.but my code always return zero. My Code here return mysqli_insert_id($this->Cnn()); always return zero Answer Please check the definition of mysqli_insert_id:- The mysqli_insert_id() function returns the id (generated with AUTO_INCREMENT) used in the last query. It m…