Skip to content

Commit

Permalink
aksionlar
Browse files Browse the repository at this point in the history
  • Loading branch information
Ugur KAZDAL committed Jan 13, 2017
1 parent 1c0a2e4 commit 38868d7
Show file tree
Hide file tree
Showing 36 changed files with 1,481 additions and 1 deletion.
11 changes: 11 additions & 0 deletions compact.php
@@ -0,0 +1,11 @@
<?php

$isim = "ajdar";
$sarki = "cikita cikolata";
$album = "cimilli dönüyor";

$verilerden_olusan_dizi = compact(['isim','sarki','album']);

print_r($verilerden_olusan_dizi);

?>
11 changes: 11 additions & 0 deletions extract.php
@@ -0,0 +1,11 @@
<?php

$ebat = "gocuman";
$yeni_dizi = array("cilgin" => "seni",
"ebat" => "gocuman",
"sarkici" => "ajdar");
extract($yeni_dizi, EXTR_PREFIX_SAME, "on_ek");

echo "$cilgin, $ebat, $sarkici, $on_ek_ebat\n";

?>
5 changes: 5 additions & 0 deletions image/composer.json
@@ -0,0 +1,5 @@
{
"require": {
"league/color-extractor": "0.3.*"
}
}
73 changes: 73 additions & 0 deletions image/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added image/image.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions image/vendor/autoload.php
@@ -0,0 +1,7 @@
<?php

// autoload.php @generated by Composer

require_once __DIR__ . '/composer' . '/autoload_real.php';

return ComposerAutoloaderInit6c59d195d14ee27450349f05b3ae958e::getLoader();

0 comments on commit 38868d7

Please sign in to comment.