Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
228 views
in Technique[技术] by (71.8m points)

php - How To Assign Value On Each Element In Array?

So, basically I have this array data:

$data = ['one', 'two', 'three'];

Now, I want to assign a value on each element on that array, that would be something like this:

$val = 'new';

// 'new' value is get from $val
$data = [
 'one' => 'new',
 'two' => 'new',
 'three' => 'new'
];

How did I do that? Thanks.

question from:https://stackoverflow.com/questions/65680098/how-to-assign-value-on-each-element-in-array

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
$data = ['one', 'two', 'three'];
$val = 'new';
$newArray = array_fill_keys($data, $val);
print_r($newArray);

Fiddle here.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...