Skip to content

Instantly share code, notes, and snippets.

@ameen-sarsour
ameen-sarsour / PHP apple sign in
Last active November 20, 2023 13:37
this code to try php sign in,
<?php
/**
* This file to test apple sign in,
* Need to app information from Apple
*
* Team Id
* Client Id
* Key Id
* and Private key
@ameen-sarsour
ameen-sarsour / PHP - Flat Array
Last active July 7, 2020 06:58
This Code to flatten an array of arbitrarily nested arrays of integers into a flat array of integers. e.g. [[1,2,[3]],4] -> [1,2,3,4].
<?php
/**
* @param array $array
* @return array Array in fal
*/
function flat(Array $array){
$result = [];
foreach($array as $item){
if(is_array($item)){