Skip to content

Instantly share code, notes, and snippets.

View ajax13's full-sized avatar

Abir Brahem ajax13

  • Paris
View GitHub Profile
@ajax13
ajax13 / Jenkinsfile
Last active December 4, 2022 12:03 — forked from jskarpe/Jenkins-php-pipeline
Jenkins file for symfony pipeline project written in groovy
repositoryUrl = "https://github.com/xxx/yyy.git"
branch = "zzz"
pipeline {
agent any
stages {
stage('Clone sources') {
steps {
git url: repositoryUrl, credentialsId: "git-credentials", branch: branch
@cecilemuller
cecilemuller / get_combinations.php
Created February 1, 2013 03:13
PHP: Get all combinations of multiple arrays (preserves keys)
<?php
function get_combinations($arrays) {
$result = array(array());
foreach ($arrays as $property => $property_values) {
$tmp = array();
foreach ($result as $result_item) {
foreach ($property_values as $property_value) {
$tmp[] = array_merge($result_item, array($property => $property_value));
}