Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This question already has an answer here:

We have

$symb="_";

$num=10;

We want $ten_symbs to be exactly "__________"; // ten symbols "_". Whats the fastest and/or the best way to assign ten "_" to $ten_symbs?

share|improve this question

marked as duplicate by tereško, NullPoiиteя, vascowhite, Lusitanian, webarto Feb 17 at 16:17

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 10 down vote accepted

str_repeat():

$symbol = '_';
$num    = 10;
echo str_repeat($symbol, $num);
share|improve this answer

You can use str_repeat as:

$ten_symbs = str_repeat($symb, $num);

You can also do:

$ten_symbs = str_pad('',$num,$symb);

But the fist option is cleaner.

share|improve this answer
$ten_symbs = '';
for($i=0;$i<$num;$i++) {
   $ten_symbs .= $symb;
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.