/    Sign up×
Community /Pin to ProfileBookmark

How to set maximum 3 array values?

I have code to show [B]ALL array values[/B] like:

[code=php]

if(isset($var) && is_array($var) && count($var) > 0) {
foreach($var as $i=>$element) {

}

}

[/code]

How to set foreach function to show only first 3 elements ([B]limited records[/B]…)?

to post a comment
PHP

2 Comments(s)

Copy linkTweet thisAlerts:
@NogDogMay 13.2011 — [code=php]
$slice = array_slice($arr, 0, 3, true);
foreach($slice as $i => $element) {
[/code]
Copy linkTweet thisAlerts:
@toplisekauthorMay 14.2011 — I have array in two words like

WORD1 WORD2

How to make

Word1 word2

Notice that there is first word with CAPS.

Working is:
[code=php]
$var[$i] = mb_convert_case(mb_strtolower($element, 'UTF-8'), MB_CASE_TITLE, 'UTF-8');
[/code]


How to do in this case?
×

Success!

Help @toplisek spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.18,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...