Skip to content

Tag: arrays

Attempt to assign property “status” on null

I have the following code running on PHP 7.4.2, but after the update to PHP 8.1.2, I’m getting an error in order to fill an array with some data. I’m getting the following error: Fatal error: Uncaught Error: Attempt to assign property “status” on null Is this problem related to some ch…

PHP – Array For Loop Not Storing Values

I created an empty array and want to store values from another array coming from a form. I am getting only the last value stored in the array, it is for some reason overlapping the values that need to be stored in a multidimensional array. The Output I am getting is 0 – Array 1 – Array and so on

How to access specific array index and display it? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 months ago. Improve this question So in this project i have 3 PHP files, namely index.php, processor.php, a…

Reorganize array in twig

I want to invert my array so that the categories are first so that I can better manage my foreach later. I managed to achieve it, but merge has removed the same keys. And I should not add value as another item in the array. Default Array: After Merge: ( two records have been deleted :() What is he trying

Add array data by name php

I’m new to arrays. I’d like to know if you can add data to the array by name. This would be an example of what I want to achieve example: result what I want is to add the data “ibanez” to the array “names” but nevertheless create a new one. I need it to stay this way. Is th…