Jamie Balfour

Welcome to my personal website.

Find out more about me, my personal projects, reviews, courses and much more here.

Official ZPE/YASS documentationCount

The ZPE count feature is used to display the count of elements in an array, map or the length of a string. The count expression was added in ZPE 1.7.9.

Whilst it looks like a built-in function, it is actually not and the underlying implementation is very different. By having the a different implementation, it actually runs faster too.

Using count

To use it, write it like a function:

YASS
$a = count("Hello world")
print($a)
$b = count([1, 2, 3])
print($b)
$c = count([1 => 2, 2 => 3, 3 => 4])
print($c)
        
Comments

There are no comments on this page.

New comment

Comments are welcome and encouraged, including disagreement and critique. However, this is not a space for abuse. Disagreement is welcome; personal attacks, harassment, or hate will be removed instantly. This site reflects personal opinions, not universal truths. If you can’t distinguish between the two, this probably isn’t the place for you. The system temporarily stores IP addresses and browser user agents for the purposes of spam prevention, moderation, and safeguarding. This data is automatically removed after fourteen days.

Comments powered by BalfComment

Feedback 👍
Comments are sent via email to me.