I want to change some values in my multidimension array in PHP.
Suppose that I have:
$photographer[0]['uid'] = '1001';
$photographer[0]['point'] = '0';
$photographer[1]['uid'] = '1002';
$photographer[1]['point'] = '1';
I want to change point of photographer that have uid = '1001' to 3. How can I do it?