Mansoor Buttmansoor-eth.hashnode.dev·Nov 21, 2024Storing Dynamic Type in SolidityWhen Storing Dynamic type data , We don’t explicitly store the data in the next immediate slot, instead we only store the address of the slot where the element of that index is , In simpler words we are basically storing the “Pointer” to the actual a...Mastering the EVMSmart Contracts
Vinh Jackervinhjacker.hashnode.dev·Aug 4, 2023How do you fill a PHP array dynamically (PHP, array, development)?Filling a PHP array dynamically involves adding elements to the array at runtime. This is typically done using a loop or by fetching data from a database or another data source. Here's a basic explanation of how you can accomplish this: 1. Define an ...1 likePHP