Skip to content
Advertisement

Tag: function

PHP:: Double sort an array by priority

My goal is to sort an array first by the string length and after that sort it again by character value without changing the priority of the length. Here is my code: I am getting : …almost but not there) Answer You’re missing the logic to account for sorting by character value. You can add that logic into your custom

PHP class functions [closed]

Closed. This question needs debugging details. It is not currently accepting answers. Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question. Closed 8 months ago. Improve this question I have problem with functions. I call getclass function with this. But its

Use php function in php form

I am new in php, I am solving one task. Create a form with 2 text fields to enter only numbers (treat) and will mean number and power. After pressing the button the result is displayed on the same page, and the result is determined by recursive function in case you forget to enter a number, the number 2 will

Why array is not updated when i want to print it out (print_r)?

first print_r ($array) shows 8elements, then in the next function i add 2 elements. And print_r in the function addSumMulti shows 10 elements, but print_r after function addSumMulti inside the fillArray shows only 8 elements. What is wrong, what should I change so that i could see 10 elements in print_r after addSumMulti (21 line)? Answer In PHP ordinary variables

Advertisement